home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 August / chip-cd_2004_08.zip / 08 / Multimedia / Zoom Player Standard 4.00 / zp400std.exe / default.trailers < prev    next >
Text File  |  2003-11-21  |  3KB  |  83 lines

  1. // This is a Sample DVD Trailers file for Zoom Player.
  2. // It can also work for Media Mode if specified in a command
  3. // line parameter (the SetDVDPath function is ignored), for example:
  4. // x:\path\to\zplayer.exe x:\trailers\MyTrailers.trailers z:\video\movie.avi
  5. //
  6. //
  7. // Functions:
  8. //
  9. // SetDVDPath(Directory)
  10. //   - Specifies the location where the VIDEO_TS.IFO file resides
  11. //     If no path is specified, Zoom Player will try to use the
  12. //     specified DVD Drive instead.
  13. //
  14. //     Examples:
  15. //     SetDVDPath(E:\VIDEO_TS)
  16. //     SetDVDPath(C:\My Media Server\My Movie)
  17. //
  18. //
  19. // LoadRandomTrailer(Directory)
  20. //   - Loads a Random Media file from the specified Directory.
  21. //     If you try to load multiple random files from the same
  22. //     directory, Zoom Player will try to load different files
  23. //     each time.
  24. //
  25. //     Zoom Player uses the AUDIO/VIDEO extensions defined under
  26. //     "Options / Values / Extensions" To determine which file
  27. //     types to look for in the specified directory.
  28. //
  29. //     Examples:
  30. //     LoadRandomTrailer(C:\My Trailers\New Releases)
  31. //     LoadRandomTrailer(C:\My Trailers\DTS)
  32. //
  33. //
  34. // LoadMaskRandomTrailer(Directory+Mask)
  35. //   - Similar to "LoadRandomTrailer", but you must specify a
  36. //     file mask for Zoom Player to look for.  The extensions
  37. //     specified in the Options are ignored for this function.
  38. //     This function is recursive, so as the example below shows
  39. //     specifying "VIDEO_TS.IFO" may find several such files
  40. //     in directories that reside under the "My Trailers" directory.
  41. //
  42. //     Examples:
  43. //     LoadMaskRandomTrailer(C:\My Trailers\*.AVI)
  44. //     LoadMaskRandomTrailer(C:\My Trailers\VIDEO_TS.IFO)
  45. //
  46. //
  47. // LoadTrailer(File)
  48. //   - Load a specific Media file
  49. //
  50. //     Examples:
  51. //     LoadTrailer(C:\My Trailers\New Releases\AotC.AVI)
  52. //     LoadTrailer(C:\My Trailers\New Releases\IJ4.AVI)
  53. //
  54. //
  55. // Execute(Executable,Parameters,WaitTillDone)
  56. //   - Execute an external program.  WaitTillDone is a boolean parameter
  57. //     (value can be "True" or "False") and determines if Zoom Player should
  58. //     wait until after the exectable file closes or go on with the rest
  59. //     of the trailer commands.
  60. //
  61. //     Examples:
  62. //     Execute(C:\Program Files\LightsOff.exe, ,True)
  63. //     (No parameters required for this executable)
  64. //
  65. //     Execute(C:\Program Files\SetVolume.exe,/v:50,False)
  66. //
  67.  
  68.  
  69. // First we set the DVD Path to our DVD Drive (or hard disk path where we copied it to)
  70. // We write the full path as Zoom Player looks for the VIDEO_TS.IFO file in the specified path.
  71. SetDVDPath(F:\VIDEO_TS)
  72.  
  73. // We start off with a personalized logo we've made for our Home Theater:
  74. LoadTrailer(C:\Eye Candy\My Logo.AVI)
  75.  
  76. // Next we show a random upcoming movie trailer:
  77. LoadRandomTrailer(C:\My Trailers\New Releases)
  78.  
  79. // Finally we show a random player for our spanking new Dolby DXESVW sound system:
  80. LoadRandomTrailer(C:\My Trailers\Too Cool for 5.1\Dolby Digital)
  81.  
  82. // After the last trailer plays, the DVD will start playing automatically.
  83.